home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / CIncludes / PCIBridgePlugin.h < prev    next >
C/C++ Source or Header  |  1996-05-01  |  1KB  |  65 lines

  1. /*
  2.      File:        PCIBridgePlugin.h
  3.  
  4.      Contains:    This file contains all interface related structures and prototypes for pci expert to
  5.  
  6.      Version:    Technology:    Copland
  7.                  Release:    Universal Interfaces 3.0d3 on Copland DR1
  8.  
  9.      Copyright:    © 1984-1996 by Apple Computer, Inc.  All rights reserved.
  10.  
  11.      Bugs?:        If you find a problem with this file, send the file and version
  12.                  information (from above) and the problem description to:
  13.  
  14.                      Internet:    apple.bugs@applelink.apple.com
  15.                      AppleLink:    APPLE.BUGS
  16.  
  17. */
  18. #ifndef __PCIBRIDGEPLUGIN__
  19. #define __PCIBRIDGEPLUGIN__
  20.  
  21. #ifndef __PCICOMMONPLUGIN__
  22. #include <PCICommonPlugin.h>
  23. #endif
  24.  
  25. #ifdef __cplusplus
  26. extern "C" {
  27. #endif
  28.  
  29. #if PRAGMA_IMPORT_SUPPORTED
  30. #pragma import on
  31. #endif
  32.  
  33. #if PRAGMA_ALIGN_SUPPORTED
  34. #pragma options align=mac68k
  35. #endif
  36.  
  37. #if FOR_SYSTEM8_PREEMPTIVE
  38. /* Prototypes for the bridge plugin*/
  39. extern OSStatus PCIBridgePluginInitialize(void);
  40.  
  41. extern void DefaultBridgeEnabler(InterruptSetMember setIDMember, void *refCon);
  42.  
  43. extern InterruptSourceState DefaultBridgeDisabler(InterruptSetMember setIDMember, void *refCon);
  44.  
  45. extern InterruptMemberNumber DefaultBridgeDispatcher(InterruptSetMember setIDMember, void *info, UInt32 theIntCount);
  46.  
  47. extern OSStatus PCIBridgePluginFinalize(void);
  48.  
  49. #endif
  50.  
  51. #if PRAGMA_ALIGN_SUPPORTED
  52. #pragma options align=reset
  53. #endif
  54.  
  55. #if PRAGMA_IMPORT_SUPPORTED
  56. #pragma import off
  57. #endif
  58.  
  59. #ifdef __cplusplus
  60. }
  61. #endif
  62.  
  63. #endif /* __PCIBRIDGEPLUGIN__ */
  64.  
  65.